home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
langs
/
iconv8_s.arc
/
TESTS.ARC
/
MATH.ICN
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-03-28
|
363 b
|
20 lines
procedure main()
every i := 1 to 25 do {
v := 0.25 * i
wf (v)
if (v <= 1.0) then
every wf ((acos | asin) (v))
else
every wf ("" | "")
every wf (atan(v) | atan(v,3))
every wf ((cos | sin | tan) (v))
every wf ((sqrt | exp | log) (v))
wf (log(v,3))
write ()
}
end
procedure wf (v)
writes(left(v,5)," ")
end